import _ from 'lodash'; import type { GetStaticPropsContext, NextPage } from "next"; import ReactMarkdown from 'react-markdown'; import Head from "next/head"; import deepReadDir from "../deepReadDir"; import fs from 'fs'; const MARKDOWN_DIR = '../eug-vs-xyz/src'; const transformLinkURI = (uri: string): string => { return uri.match(/(.*)\.md/)?.[1] || uri; } export const getStaticProps = async (context: GetStaticPropsContext) => { const path = _.isArray(context.params?.path) && context.params?.path || [context.params?.path]; const markdownSource = fs.readFileSync(`${MARKDOWN_DIR}/${path?.join('/')}.md`).toString(); return { props: { markdownSource, path, } } } export const getStaticPaths = async () => { const globalPaths = await deepReadDir(MARKDOWN_DIR); const paths = globalPaths .map(globalPath => globalPath.match(`${MARKDOWN_DIR}/(.*)\.md`)?.[1] ) .filter(p => p) .map(p => p?.split('/')) .map(path => ({ params: { path } })); console.log(paths); return { paths, fallback: false, } } const Page: NextPage = ({ markdownSource }: any) => { return ( <>